home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue34
/
clinic
/
Drag2.dpr
< prev
next >
Wrap
Text File
|
1998-02-07
|
213b
|
16 lines
program Drag2;
uses
Forms,
Drag2U in 'Drag2U.PAS' {Form1};
{$R *.RES}
begin
{$ifdef Win32}
Application.Initialize;
{$endif}
Application.CreateForm(TForm1, Form1);
Application.Run;
end.